home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Workbench Add-On
/
Workbench Add-On - Volume 1.iso
/
Music
/
MISC
/
Metro
/
Rexx
/
example3.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-08-23
|
806b
|
34 lines
/*
* Example Metronome ARexx script.
*
* You need to run the Metro first!
*
* Plays football chant!
*/
ADDRESS METRO.1
tempo 90 /* Set tempo */
note 4 /* Set note type to crotchets */
loadsample "Samples/Cowbell2" /* Load cowbell sample */
start /* Start */
waitticks 1 /* Note: 1 click has already started */
note 8 /* Change to quavers */
waitticks 2 /* Wait for 2 quavers */
note 4 /* Change to crothchets */
waitticks 1 /* Wait for 1 crotchets */
note 8 /* Change to quavers */
waitticks 3 /* Wait for 3 quavers */
note 4 /* Change to crotchets */
waitticks 1 /* Wait for 1 crotchets */
note 8 /* Change to quavers */
waitticks 2 /* Wait for 2 quavers */
nomoreticks /* Stop and let last crotchet finish playing */